import * as util from "./util"; util.importAll(util, global); function importAll(sourceScope, targetScope) { for (let name in sourceScope) { targetScope[name] = sourceScope[name]; } }